Skip to content

chore(deps-dev): bump the development-dependencies group across 1 directory with 13 updates - #102

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/development-dependencies-d22065a781
Closed

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/development-dependencies-d22065a781

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 6, 2026

Copy link
Copy Markdown
Contributor

Bumps the development-dependencies group with 13 updates in the / directory:

Package From To
@changesets/cli 3.0.0 3.0.3
@playwright/test 1.61.1 1.63.0
@vitejs/plugin-vue 6.0.1 6.0.9
supabase 2.112.0 2.117.0
wrangler 4.114.0 4.131.1
tsdown 0.22.13 0.23.0
@tsconfig/node22 22.0.2 22.0.6
sass-embedded 1.90.0 1.104.1
unocss 66.7.5 66.10.2
vite-plugin-vue-devtools 8.0.0 8.2.1
@unocss/preset-uno 66.7.5 66.10.2
sass 1.101.6 1.104.1
wxt 0.20.27 0.21.4

Updates @changesets/cli from 3.0.0 to 3.0.3

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​3.0.3

Patch Changes

  • #2297 3f163da Thanks @​Andarist! - Fixed semver ranges (such as >=1.0.0 <2.0.0) getting cut off (>=2.0.0) when updating internal dependencies.

  • #2276 ca9d110 Thanks @​Andarist! - Fixed pnpm 10 compatibility with npm 12 when reading registry information, packing, and publishing packages.

  • Updated dependencies [3f163da, bfe9050, e522996]:

    • @​changesets/apply-release-plan@​8.1.1
    • @​changesets/config@​4.0.1

@​changesets/cli@​3.0.2

Patch Changes

@​changesets/cli@​3.0.1

Patch Changes

Changelog

Sourced from @​changesets/cli's changelog.

3.0.3

Patch Changes

  • #2297 3f163da Thanks @​Andarist! - Fixed semver ranges (such as >=1.0.0 <2.0.0) getting cut off (>=2.0.0) when updating internal dependencies.

  • #2276 ca9d110 Thanks @​Andarist! - Fixed pnpm 10 compatibility with npm 12 when reading registry information, packing, and publishing packages.

  • Updated dependencies [3f163da, bfe9050, e522996]:

    • @​changesets/apply-release-plan@​8.1.1
    • @​changesets/config@​4.0.1

3.0.2

Patch Changes

3.0.1

Patch Changes

Commits

Updates @playwright/test from 1.61.1 to 1.63.0

Release notes

Sourced from @​playwright/test's releases.

v1.63.0

🔒 Test locks

Tests that access a shared resource — an external service, a global account setting — can now declare a named lock. Tests that share a lock name never run concurrently, across files, workers and projects, while everything else keeps running in parallel:

test('update user settings', { lock: 'user-settings' }, async ({ page }) => {
  // never runs at the same time as other tests holding 'user-settings'
});

A test can hold multiple locks, and test.describe() accepts a lock for the whole group. Learn more about test locks.

🪟 Locate across frames

page.frameLocator() and frame.frameLocator() called without a selector search in any frame of the subtree, so you no longer need to locate the iframe first:

// Finds the button in any frame on the page.
await page.frameLocator().getByRole('button').click();

The rest of the locator resolves inside a single frame, just like a regular locator, and an error is thrown when it matches elements in several frames.

👁️ Visible-only locators

New locator.visible() returns a locator that matches only visible elements. It is the recommended replacement for the :visible CSS pseudo-class:

await page.locator('button').visible().click();

🧾 Step params and subtitles

Steps now carry structured data for reporters. Playwright API steps report the target locator and call arguments, and test.step() accepts subtitle and params options for your own steps:

await test.step('Login', async () => {
  // ...
}, { subtitle: 'as admin', params: { user: 'admin' } });

Reporters receive them via testStep.subtitle and testStep.params. For Playwright API

... (truncated)

Commits
  • 1b025d7 chore: mark v1.63.0 (#42569)
  • 0b9956d cherry-pick(#42568): docs(test): mark test.step subtitle option as since v1.63
  • 13dbf10 cherry-pick(#42552): docs: release notes for v1.63
  • e93b64e cherry-pick(#42566): feat(test): add subtitle option to test.step (#42567)
  • 2b7a5f2 test: response.body() for content-encoding:identity (#42537)
  • 648a67c fix(mcp): create parent directories for explicitly named files (#42540)
  • 7894f56 docs(mcp): clarify how tool file names are resolved (#42538)
  • 52900a1 devops: restore npm publishing from GitHub Actions (#42550)
  • 8c47f59 docs(csharp): fix nonexistent method names in guide examples (#42507)
  • bd6e552 chore(video): emit frames with real timestamps, drop frame number quantizatio...
  • Additional commits viewable in compare view

Updates @vitejs/plugin-vue from 6.0.1 to 6.0.9

Release notes

Sourced from @​vitejs/plugin-vue's releases.

plugin-vue@6.0.9

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.8

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.7

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.6

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.5

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.4

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.3

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.2

Please refer to CHANGELOG.md for details.

Changelog

Sourced from @​vitejs/plugin-vue's changelog.

6.0.9 (2026-09-14)

Bug Fixes

  • deps: update all non-major dependencies (#812) (b2b559d)
  • plugin-vue: initialize compiler correctly (#475) (127b03f)
  • plugin-vue: transpile TS in templates with empty script block (#838) (189148e)

Miscellaneous Chores

6.0.8 (2026-07-14)

Features

  • plugin-vue: add forced vapor mode option (#766) (d59c3c0)

Bug Fixes

  • deps: update all non-major dependencies (#781) (d369e5a)

6.0.7 (2026-05-15)

Features

  • use carets for @rolldown/pluginutils version (#776) (941b651)

Bug Fixes

  • deps: update all non-major dependencies (#762) (9e825b8)
  • deps: update all non-major dependencies (#774) (77dc8bc)

6.0.6 (2026-04-13)

Features

  • plugin-vue: propagate multiRoot for template-only vapor components (#745) (9e07ae9)

Bug Fixes

  • deps: update all non-major dependencies (#738) (050c996)

Miscellaneous Chores

6.0.5 (2026-03-12)

Miscellaneous Chores

  • remove Vite 8 beta from supported range (#746) (b3f23e4)

6.0.4 (2026-02-02)

... (truncated)

Commits
  • 822c69d release: plugin-vue@6.0.9
  • 127b03f fix(plugin-vue): initialize compiler correctly (#475)
  • 3180192 chore(deps): update dependency obug to v3 (#846)
  • 189148e fix(plugin-vue): transpile TS in templates with empty script block (#838)
  • b2b559d fix(deps): update all non-major dependencies (#812)
  • d8ff7d0 release: plugin-vue@6.0.8
  • d59c3c0 feat(plugin-vue): add forced vapor mode option (#766)
  • d369e5a fix(deps): update all non-major dependencies (#781)
  • f93aceb release: plugin-vue@6.0.7
  • 941b651 feat: use carets for @rolldown/pluginutils version (#776)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​vitejs/plugin-vue since your current version.


Updates supabase from 2.112.0 to 2.117.0

Release notes

Sourced from supabase's releases.

v2.117.0

Supabase CLI v2.117.0 — 2026-09-07

This release debuts experimental Workers commands for Edge Function management, introduces config management commands (diff and pull), and publishes the @​supabase/config package to npm for programmatic config access. The release also includes performance improvements, bug fixes across auth and database sync, and infrastructure updates.

Highlights

  • Supabase Workers suite (experimental) — Manage Edge Functions from the CLI with new supabase experimental workers subcommands: new, list, status, delete, push (with --no-wait to skip build wait), and logs. Includes exposure control and instance configuration. (#6261, #6262, #6263, #6349, #6371, #6389, #6410, #6432)

  • Config management suitesupabase config diff shows what would change before pushing; supabase config pull fetches your remote configuration locally. Config push now applies changes as diffs and confirms branch targets upfront. (#6295, #6438, #6446, #6454)

  • @​supabase/config npm package — Programmatic access to config validation and diffing logic. (#6423, #6339, #6366, #6447)

New features

  • Function slug in served functions — Function slugs are now available as environment variables. (#6345)

  • Slim Docker images — Set SUPABASE_USE_SLIM_IMAGES=true to use smaller GHCR images locally. (#6382)

  • Shadow baseline cache opt-out — Caching is now on by default; add --no-cache-baseline to disable. (#6403)

  • Bundled pg-delta as standard — The bundled pg-delta engine is now the only implementation. (#6487)

Improvements

  • SUPABASE_API_* environment variable overrides now work. (#6467)

  • PowerShell users see a warning if the shell corrupts piped database dumps. (#6418)

  • Parallel provisioning speeds up pg-delta schema diffs. (#6215)

  • Unified output across workers commands. (#6389)

  • ProjectConfig now covers hosted-field configuration. (#6451)

Bug fixes

  • CLI accepts sbp_v0 tokens. (#6360)

  • Auth email content_path restricted to project root. (#6489)

  • Extension-managed database objects properly deleted in declarative sync. (#6449)

  • Colliding schema names no longer skipped. (#6394)

  • Provisioned ledger DDL statements now skipped. (#6422)


Plus multiple dependency updates and internal improvements.

... (truncated)

Commits
  • 21db855 test(cli): cover config push and unlink (CLI-2293, CLI-2326) (#6494)
  • 6689867 fix(cli): honor SUPABASE_API_* overrides (CLI-2318) (#6467)
  • 3095e91 feat(cli): make the bundled pg-delta engine the only pg-delta implementation ...
  • 8773536 refactor(config): consolidate command-family helpers (CLI-2292) (#6491)
  • ad95a9a fix(cli): confine auth email content_path to project root (CLI-2320) (#6489)
  • 3343c2f fix(cli): hedge config's 404 message, align push load errors (#6490)
  • 5ba4bc8 chore: restructured cli directory - flatten src/legacy/* into src/ (#6486)
  • 25ffc73 fix(cli): honour deletion of extension-managed objects in declarative sync (#...
  • 2c66579 feat(workers): add exposure control and new --instances flag (#6432)
  • adc1dfa test(cli): narrow config pull live pin (CLI-2324) (#6468)
  • Additional commits viewable in compare view

Updates wrangler from 4.114.0 to 4.131.1

Release notes

Sourced from wrangler's releases.

wrangler@4.131.1

Patch Changes

  • #15592 945aaa3 Thanks @​WillTaylorDev! - Add a provisioning delay note when custom domain Preview URLs change

    Wrangler now explains that DNS and TLS certificate provisioning may continue after a deploy adds a custom domain or enables its Preview URLs. Stable redeploys don't repeat the note.

    This assumes that a request which matches the stored custom domain state doesn't restart provisioning. The client infers this from the API changeset and current domain record because this repository can't verify the backend behavior.

  • #15592 945aaa3 Thanks @​WillTaylorDev! - Clarify production status labels for custom domain routes

    Wrangler now prefixes explicit custom domain production states with production: so they match Preview labels. The updated labels appear in deployed trigger output and WRANGLER_OUTPUT_FILE_PATH.

  • #15602 47d906f Thanks @​dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    @​cloudflare/workers-types ^5.20260910.1 ^5.20260911.1
    workerd 1.20260910.1 1.20260911.1
  • #15592 945aaa3 Thanks @​WillTaylorDev! - Avoid replacement prompts for custom domains already on the Worker

    Wrangler now updates Preview settings without asking to replace a custom domain when that domain already belongs to the deployed Worker. It still asks before replacing domains attached to another Worker.

  • #15592 945aaa3 Thanks @​WillTaylorDev! - Explain how to enable Preview URLs when a Preview deployment has none

    wrangler preview now shows URL shapes and configuration snippets for Workers.dev and custom domains. The custom domain snippet preserves every configured route, and the guidance distinguishes missing settings from disabled ones.

    This changes a private beta feature. The warning also makes clear that wrangler deploy publishes code from the current checkout.

  • Updated dependencies [47d906f, c2699bf]:

wrangler@4.131.0

Minor Changes

  • #15480 36aed7f Thanks @​skepticfx! - Add Durable Object-managed Containers to top-level container configuration

    Wrangler now accepts scheduling_policy: "durable_object" in the top-level containers array and creates its namespace-backed application after the Worker upload resolves the Durable Object namespace ID. The namespace ID is also the application ID, so repeated deploys idempotently ensure the same application without name-based lookup, modification, or a Containers rollout.

    Durable Object-managed entries accept class_name, scheduling_policy, an optional name, and an optional named images map. Scheduler-only fields are rejected. Each image provides either a local dockerfile or a digest-pinned managed-registry image. Wrangler builds or resolves each image, waits while Cloudflare prepares it for the Containers runtime, and uploads the resulting references with the Worker version for access through ctx.container.images and env.EXPERIMENTAL_CLOUDFLARE_CONTAINER_IMAGES. Local development support for these entries is deferred to a follow-up.

    Existing scheduler-backed entries and Durable Object migrations continue to work unchanged.

    With --containers-rollout=none, existing Workers retain their deployed Container metadata and image binding even when local containers is omitted or empty; local scheduler edits are also ignored. The upload stops if the deployed versions cannot be recovered. Existing Workers for Platforms dispatch scripts reject this flag before upload because their API does not expose enough metadata to preserve Container associations safely. First deployments can still skip Container preparation and rollout. Without this flag, removing managed Containers, including by omitting containers entirely, clears the experimental image binding even with keep_vars.

    versions deploy validates the selected versions before changing traffic and creates their Durable Object-managed applications only after deployment succeeds. Both deploy and versions deploy report partial completion if application creation fails afterward, with instructions to retry the same command.

... (truncated)

Commits

Updates tsdown from 0.22.13 to 0.23.0

Release notes

Sourced from tsdown's releases.

v0.23.0

   🧭 Migration Guide

Most users can upgrade directly. Before upgrading, run one final build with tsdown@0.22.14 and resolve all deprecation warnings.

  • config:
    • bundle: falseunbundle: true; bundle: true can be removed
    • outExtensionoutExtensions
    • publicDir / --public-dircopy / --copy
    • removeNodeProtocol: truenodeProtocol: 'strip'
    • injectStylecss.inject
  • deps:
    • inlineOnly / deps.onlyAllowBundledeps.onlyBundle
    • skipNodeModulesBundle: truedeps.neverBundle: true
    • resolveDepSubpath now defaults to false; set it to true to preserve the previous behavior
  • dts:
    • rolldown-plugin-dts was upgraded from 0.27.13 to 0.28.5
    • dts.oxc: truedts.generator: 'oxc'
    • dts.tsgo: truedts.generator: 'tsgo'; oxc and tsgo objects now only configure their respective generators
    • dts.volarPluginsdts.customLanguages; rename each language's create hook to createVolarPlugins
    • Custom languages, including vue, now throw when combined with an incompatible generator
    • dts.cjsReexport was removed; dual-format builds now generate CJS declarations in a separate pass
  • attw:
    • The default profile changed from strict to esm-only; set profile: 'strict' to preserve the previous checks
  • programmatic API:
    • build() now returns { bundles, watch }; replace const bundles = await build() with const { bundles } = await build()
  • requirements:
    • Node.js 25 is no longer supported; use ^22.18.0, ^24.11.0, or >=26.0.0
    • rolldown-plugin-dts now requires Rolldown 1.2.x
    • Legacy types and typesVersions fallbacks were removed; use TypeScript's bundler, node16, or nodenext module resolution

   🚨 Breaking Changes

   🚀 Features

... (truncated)

Commits

Updates @tsconfig/node22 from 22.0.2 to 22.0.6

Commits

Updates sass-embedded from 1.90.0 to 1.104.1

Changelog

Sourced from sass-embedded's changelog.

1.104.1

  • Fix a bug where loud comments before @use rules could be emitted multiple times under certain circumstances.

  • Fix a bug in which an invalid selector at the end of an indented syntax stylesheet would cause the parser to crash instead of emitting a useful error message.

Command Line Interface

  • Many-to-many compilations no longer compile any files that appear in the output directory if the output directory is also within the source directory. This fixes a bug where --watch mode could enter an infinite loop recompiling the same CSS file over and over.

  • Sass now sets the modification time of output files to the time compilation started rather than the time it ended. This ensures that, if a source file is modified during compilation, --watch and --update mode will recompile the outputs to include the new source file contents.

1.104.0

  • Potentially breaking compatibility fix: Colors now convert the special values NaN and negative zero, as well as infinity and negative infinity for polar-hue channels, to 0 as per the CSS spec.

  • The special value negative zero is now serialized as -0 instead of 0 for greater compatibility when using it in CSS calculations.

1.103.1

  • No user-visible changes.

1.103.0

  • Potentially breaking compatibility fix: Colors now preserve "analogous sets" of missing channels during conversions, per the CSS spec. For example, color.to-space(lch(50% none none), lab) now returns lab(50% none none) instead of lab(50% 0 0).

1.102.0

  • Use the 2.4 gamma transfer function for rec2020, as specified by the latest draft of CSS Color 4.

1.101.7

  • No user-visible changes.

... (truncated)

Commits
  • aa4ed87 Update Dart Sass version and release
  • dbfd5a2 Bump dart-lang/setup-dart from 1.7.2 to 1.8.1 (#444)
  • 191d6aa Update Dart Sass version and release
  • ecc0802 Update Dart Sass version and release
  • cb3b9f0 Bump dart-lang/setup-dart from 1 to 1.7.2 (#441)
  • 0fd3bd0 Bump typescript from 6.0.3 to 7.0.2 (#438)
  • 07d7803 Update Dart Sass version and release
  • de6ceb9 Use gamma 2.40 for display-referred rec2020 (#418)
  • 7932fd8 Update Dart Sass version and release
  • 4377858 Bump actions/setup-node from 6 to 7 (#440)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for sass-embedded since your current version.


Updates unocss from 66.7.5 to 66.10.2

Release notes

Sourced from unocss's releases.

v66.10.2

   🐞 Bug Fixes

    View changes on GitHub

v66.10.1

   🐞 Bug Fixes

    View changes on GitHub

v66.10.0

   🚀 Features

   🐞 Bug Fixes

    <...

    Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 6, 2026
@dependabot
dependabot Bot requested a review from xiaoland as a code owner September 6, 2026 08:31
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 6, 2026
…ectory with 13 updates

Bumps the development-dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@changesets/cli](https://github.com/changesets/changesets/tree/HEAD/packages/cli) | `3.0.0` | `3.0.3` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.61.1` | `1.63.0` |
| [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) | `6.0.1` | `6.0.9` |
| [supabase](https://github.com/supabase/cli/tree/HEAD/apps/cli) | `2.112.0` | `2.117.0` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.114.0` | `4.131.1` |
| [tsdown](https://github.com/rolldown/tsdown) | `0.22.13` | `0.23.0` |
| [@tsconfig/node22](https://github.com/tsconfig/bases/tree/HEAD/bases) | `22.0.2` | `22.0.6` |
| [sass-embedded](https://github.com/sass/embedded-host-node) | `1.90.0` | `1.104.1` |
| [unocss](https://github.com/unocss/unocss/tree/HEAD/packages-presets/unocss) | `66.7.5` | `66.10.2` |
| [vite-plugin-vue-devtools](https://github.com/vuejs/devtools/tree/HEAD/packages/vite) | `8.0.0` | `8.2.1` |
| [@unocss/preset-uno](https://github.com/unocss/unocss/tree/HEAD/packages-deprecated/preset-uno) | `66.7.5` | `66.10.2` |
| [sass](https://github.com/sass/dart-sass) | `1.101.6` | `1.104.1` |
| [wxt](https://github.com/wxt-dev/wxt) | `0.20.27` | `0.21.4` |



Updates `@changesets/cli` from 3.0.0 to 3.0.3
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/changesets/changesets/commits/@changesets/cli@3.0.3/packages/cli)

Updates `@playwright/test` from 1.61.1 to 1.63.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.61.1...v1.63.0)

Updates `@vitejs/plugin-vue` from 6.0.1 to 6.0.9
- [Release notes](https://github.com/vitejs/vite-plugin-vue/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-vue/commits/plugin-vue@6.0.9/packages/plugin-vue)

Updates `supabase` from 2.112.0 to 2.117.0
- [Release notes](https://github.com/supabase/cli/releases)
- [Changelog](https://github.com/supabase/cli/blob/develop/apps/cli/docs/release-process.md)
- [Commits](https://github.com/supabase/cli/commits/v2.117.0/apps/cli)

Updates `wrangler` from 4.114.0 to 4.131.1
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.131.1/packages/wrangler)

Updates `tsdown` from 0.22.13 to 0.23.0
- [Release notes](https://github.com/rolldown/tsdown/releases)
- [Commits](rolldown/tsdown@v0.22.13...v0.23.0)

Updates `@tsconfig/node22` from 22.0.2 to 22.0.6
- [Commits](https://github.com/tsconfig/bases/commits/HEAD/bases)

Updates `sass-embedded` from 1.90.0 to 1.104.1
- [Changelog](https://github.com/sass/embedded-host-node/blob/main/CHANGELOG.md)
- [Commits](sass/embedded-host-node@1.90.0...1.104.1)

Updates `unocss` from 66.7.5 to 66.10.2
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](https://github.com/unocss/unocss/commits/v66.10.2/packages-presets/unocss)

Updates `vite-plugin-vue-devtools` from 8.0.0 to 8.2.1
- [Release notes](https://github.com/vuejs/devtools/releases)
- [Commits](https://github.com/vuejs/devtools/commits/v8.2.1/packages/vite)

Updates `@unocss/preset-uno` from 66.7.5 to 66.10.2
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](https://github.com/unocss/unocss/commits/v66.10.2/packages-deprecated/preset-uno)

Updates `sass` from 1.101.6 to 1.104.1
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.101.6...1.104.1)

Updates `wxt` from 0.20.27 to 0.21.4
- [Release notes](https://github.com/wxt-dev/wxt/releases)
- [Commits](wxt-dev/wxt@wxt-v0.20.27...wxt-v0.21.4)

---
updated-dependencies:
- dependency-name: "@changesets/cli"
  dependency-version: 3.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@tsconfig/node22"
  dependency-version: 22.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@unocss/preset-uno"
  dependency-version: 66.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@vitejs/plugin-vue"
  dependency-version: 6.0.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: sass
  dependency-version: 1.103.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: sass-embedded
  dependency-version: 1.103.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: supabase
  dependency-version: 2.116.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: tsdown
  dependency-version: 0.22.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: unocss
  dependency-version: 66.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: vite-plugin-vue-devtools
  dependency-version: 8.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: wrangler
  dependency-version: 4.127.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: wxt
  dependency-version: 0.21.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/main/development-dependencies-d22065a781 branch from be6fae6 to 20e572e Compare September 20, 2026 08:31
@dependabot @github

dependabot Bot commented on behalf of github Sep 20, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Sep 20, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/main/development-dependencies-d22065a781 branch September 20, 2026 11:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants